GCC vs Microsoft : Undefined reference to `_chkstk'?
Posted
by SethCoder
on Stack Overflow
See other posts from Stack Overflow
or by SethCoder
Published on 2010-03-31T14:59:31Z
Indexed on
2010/04/08
4:33 UTC
Read the original article
Hit count: 919
I am using CodeBlocks and MinGW toolchain which is essentially GCC. I was using VStudio but I want to get away from it to do cross platform development. There seems to be some microsoft specific references in some libraries that I am linking, specifically in CXImage SDK (_chkstk). I presume the library was put together using VS. From my searches I have learned that GCC uses _alloca rather than _chkstk. I still want to use CXImage for some stuff I am doing. My question: Is there a way around this problem or am I stuck with ditching libs such as this if I want to use GCC?
© Stack Overflow or respective owner